home *** CD-ROM | disk | FTP | other *** search
- package javax.swing.text;
-
- class ElementIterator$StackItem implements Cloneable {
- // $FF: synthetic field
- private final ElementIterator this$0;
- Element item;
- int childIndex;
-
- private ElementIterator$StackItem(ElementIterator var1, Element var2) {
- this.this$0 = var1;
- this.item = var2;
- this.childIndex = -1;
- }
-
- // $FF: synthetic method
- ElementIterator$StackItem(ElementIterator var1, ElementIterator.1 var2, Element var3) {
- this(var1, var3);
- }
-
- // $FF: synthetic method
- static Element access$0(ElementIterator$StackItem var0) {
- return var0.getElement();
- }
-
- // $FF: synthetic method
- static int access$1(ElementIterator$StackItem var0) {
- return var0.getIndex();
- }
-
- // $FF: synthetic method
- static void access$2(ElementIterator$StackItem var0) {
- var0.incrementIndex();
- }
-
- protected Object clone() throws CloneNotSupportedException {
- return super.clone();
- }
-
- private Element getElement() {
- return this.item;
- }
-
- private int getIndex() {
- return this.childIndex;
- }
-
- private void incrementIndex() {
- ++this.childIndex;
- }
- }
-